Log in Register Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

cody's Profile Picture

cody

4270 Files

632828 Views

Latest files of /cody/swapnilsparsh/30DaysOfJavaScript/88 - Ping Pong Game

index.js cody/swapnilsparsh/30DaysOfJavaScript/88 - Ping Pong Game/index.js
175 Views
0 Comments
var ball = document.getElementById('ball');
var rod1 = document.getElementById('rod1');
var rod2 = document.getElementById('rod2');
var rules = document.getElementById('rules');
var container = document.getElementById('container');
var body = document.querySelector('body');

var color = ["orange", "aqua", "yellowgreen", "pink", "violet", "yellow", "lightgreen", "blanchedalmond", "lightsalmon"];
style.css cody/swapnilsparsh/30DaysOfJavaScript/88 - Ping Pong Game/style.css
106 Views
0 Comments
*{
box-sizing: border-box;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body{
background-color: lightsalmon;
}
index.html cody/swapnilsparsh/30DaysOfJavaScript/88 - Ping Pong Game/index.html
322 Views
0 Comments
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ping Pong Game</title>
<link rel="stylesheet" href="style.css">